home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / New System Software Extensions / Thread Manager Extension 2.0.1 / Sample Applications / Power Examples / SortPicts / Source / MacHeaders.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-03  |  1.3 KB  |  58 lines  |  [TEXT/MPS ]

  1. /*************************************************************************************
  2.  *
  3.  *    Include all the necessary files
  4.  *
  5.  *    MacHeaders.h    -    C Headers File
  6.  *
  7.  *      Copyright © Apple Computer, Inc. 1988 - 1993
  8.  *      All rights reserved.
  9.  *
  10.  *    It's no secret that trying to remember what files need to be included for
  11.  *      a project is a time consuming task meant for background processes.
  12.  *      Well, short of having them, we've got MacHeaders.  (Thanks to Think-C.)
  13.  *
  14.  *************************************************************************************/
  15.  
  16.  
  17. #ifndef __MACHEADERS__
  18. #define __MACHEADERS__
  19.  
  20. #include <Controls.h>
  21. #include <Devices.h>
  22. #include <DiskInit.h>
  23. #include <Events.h>
  24. #include <Fonts.h>
  25. #include <Memory.h>
  26. #include <Notification.h>
  27. #include <OSUtils.h>
  28. #include <Quickdraw.h>
  29. #include <Scrap.h>
  30. #include <Desk.h>
  31. #include <Dialogs.h>
  32. #include <Errors.h>
  33. #include <Files.h>
  34. #include <Lists.h>
  35. #include <Menus.h>
  36. #include <OSEvents.h>
  37. #include <Processes.h>
  38. #include <Resources.h>
  39. #include <SegLoad.h>
  40. #include <StandardFile.h>
  41. #include <Timer.h>
  42. #include <Types.h>
  43.  
  44. #ifdef __CONDITIONALMACROS__
  45. #include <LowMem.h>
  46. #else
  47. #include <SysEqu.h>
  48. #endif
  49.  
  50. #include <Packages.h>
  51. #include <TextEdit.h>
  52. #include <ToolUtils.h>
  53. #include <Windows.h>
  54. #include <QDOffscreen.h>
  55.  
  56. #endif
  57.  
  58.